projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
212042f
)
(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
author
Kenichi Handa
<handa@m17n.org>
Thu, 8 Mar 2001 02:19:18 +0000
(
02:19
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Thu, 8 Mar 2001 02:19:18 +0000
(
02:19
+0000)
src/coding.c
patch
|
blob
|
history
diff --git
a/src/coding.c
b/src/coding.c
index 7abf28647adea18bd986ba243b1813e959697d9b..72f773fb2e1387e1cf98750a9b0844bfee414b88 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-3980,7
+3980,7
@@
detect_coding_mask (source, src_bytes, priorities, skip, multibytep)
int try;
if (multibytep && c == LEADING_CODE_8_BIT_CONTROL)
- c =
*src++
- 0x20;
+ c =
src[1]
- 0x20;
if (c < 0xA0)
{